@charset "utf-8";

:root {
    --one-color: #002a89;
    --two-color: #63a1d5;
    --three-color: #eae31a;
}

.w1200 {
    max-width: 1200px;
    margin: 0 auto;
}

@media(max-width:1200px) {
    .w1200 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

body {
    font-size: 16px;
    font-weight: normal;
    background: #fff;
    font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0)
    }

    to {
        opacity: 0.8;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@media (max-width: 992px) {
    body {
        font-size: 14px;
    }
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dd {
    list-style: none;
    margin: 0px 0px 0px 0px;
    padding: 0;
}

a {
    text-decoration: none;
    color: #595757;
}

a:hover {
    text-decoration: none;
    color: var(--one-color);
}

a:focus {
    text-decoration: none !important;
}

img {
    width: auto;
    max-width: 100%;
}

/* 导航栏 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
}

.header .w1200 {
    display: flex;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    font-size: 30px;
    font-weight: 600;
    color: var(--one-color);
}

.logo-desc {
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
}

.h-contact {
    display: flex;
    align-items: center;
}

.h-wx span,
.h-mail span {
    display: inline-block;
    border: 2px solid var(--one-color);
    border-radius: 55px;
    width: 25px;
    height: 25px;
    line-height: 23px;
    font-size: 14px;
    color: var(--one-color);
    text-align: center;
    cursor: pointer;
}

.h-mail {
    margin: 0 15px;
}

.h-phone {
    color: #6a6a6a;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
}

.h-phone span {
    color: var(--one-color);
}

@media(max-width:900px) {
    .logo-desc {
        display: none;
    }
}

@media(max-width:650px) {

    .h-wx,
    .h-mail {
        display: none;
    }

    .logo a {
        font-size: 6vw;
    }

    .h-phone {
        display: none;
    }

    .header .w1200 {
        justify-content: center;
    }
}

/* 轮播图 */
.banner {
    margin-top: 80px;
}

.slide-item {
    position: relative;
}

.ban-titlt {
    position: absolute;
    top: 30%;
    width: 100%;
    text-align: center;
    color: #fff;
}

.tit-box {
    width: 50%;
    max-width: 830px;
    margin: 0 auto;
    background: var(--one-color);
    padding: 1%;
    opacity: 0.8 !important;
}

.tit-line {
    border: 3px solid #6e84b8;
}

.ban-titlt span {
    display: block;
    font-size: 36px;
    line-height: 1.3em;
    margin-top: 30px;
}

.ban-titlt h3 {
    font-size: 50px;
    font-weight: 600;
}

.ban-titlt p {
    font-size: 30px;
    font-weight: 300;
    border-top: 1px solid #8a9cc6;
    width: 90%;
    margin: 15px auto 0;
    padding: 15px 0 30px;
}

.ban-titlt2 {
    width: 80%;
    top: 15%;
    left: 10%;
    text-align: left;
}

.ban-titlt2 p {
    padding: 0;
    margin: 0;
    border: none;
}

.banner-prev::after,
.banner-next::after {
    font-size: 35px;
    font-weight: 600;
    color: var(--one-color);
}

.swiper-pagination-bullet-active {
    background: var(--one-color);
}

@media(max-width:1380px) {
    .ban-titlt span {
        font-size: 30px;
    }

    .ban-titlt h3 {
        font-size: 45px;
    }

    .ban-titlt p {
        font-size: 25px;
    }
}

@media(max-width:1170px) {
    .ban-titlt span {
        font-size: 25px;
    }

    .ban-titlt h3 {
        font-size: 35px;
    }

    .ban-titlt p {
        font-size: 20px;
    }
}

@media(max-width:930px) {
    .ban-titlt {
        top: 23%;
    }

    .ban-titlt span {
        font-size: 3vw;
    }

    .ban-titlt h3 {
        font-size: 3.6vw;
    }

    .ban-titlt p {
        font-size: 2.1vw;
    }
}

@media(max-width:700px) {
    .ban-titlt span {
        font-size: 4vw;
    }

    .ban-titlt h3 {
        font-size: 4.6vw;
    }

    .ban-titlt p {
        font-size: 2.7vw;
    }

    .ban-titlt span {
        margin-top: 10px;
    }

    .ban-titlt p {
        padding: 10px 0 10px;
    }

    .banner .slide-item img {
        min-height: 250px;
        object-fit: cover;
    }

    .tit-box {
        width: 70%;
    }
}

/* 服务中心 */
.service .w1200 {
    padding: 70px 0;
}

header {
    margin-bottom: 20px;
}

header h3 {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    color: var(--one-color);
    margin-bottom: 5px;
}

header p {
    font-size: 20px;
    font-weight: 300;
    text-align: center;
}

@media(max-width:500px) {
    header h3 {
        font-size: 25px;
    }

    header p {
        font-size: 16px;
    }
}

.service-list ul {
    display: flex;
    padding: 0;
}

.service-list li {
    position: relative;
}

#list-1,
#list-2 {
    margin-top: 20px;
}

#list-1,
.list-1 {
    margin-right: 30px;
}

.s-tit {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #fff;
}
.service-list-R li{
    position: relative;
}

.service-list-R li div {
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    font-size: 24px;
    color: #fff;
}

.service-list-R button {
    width: 180px;
    height: 50px;
    background: var(--one-color);
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
}

@media(max-width:768px) {
    .service-list img {
        min-height: 150px;
        object-fit: cover;
    }

    .service-list-R img {
        margin-top: 20px;
        width: 100%;
        max-height: 350px;
        object-fit: cover;
    }
}

@media(max-width:500px) {
    .s-tit {
        font-size: 16px;
    }

    .service .w1200 {
        padding: 40px 0;
    }
}

/* 选择净倍斯 您只管放心卖货 */
.choose {
    color: #fff;
    padding: 65px 0 120px;
}

.choose header h3 {
    color: #fff;
}

.c-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.c-item {
    text-align: center;
    border: 2px solid #fff;
    width: 32%;
    max-width: 380px;
    padding: 30px 25px;
}

.c-bg {
    width: 100px;
    height: 100px;
    margin: 0 auto 19px;
    text-align: center;
    line-height: 100px;
    color: var(--one-color);
    font-size: 45px;
    font-weight: 600;
}

.c-item-4,
.c-item-5,
.c-item-6 {
    margin-top: 20px;
}

.c-sub-tit {
    font-size: 22px;
    margin-bottom: 5px;
}

.c-desc {
    font-size: 16px;
}

@media(max-width:930px) {
    .c-item {
        width: 49%;
    }

    .c-item-3 {
        margin-top: 20px;
    }
}

@media(max-width:500px) {
    .c-item {
        width: 100%;
        max-width: 500px;
    }

    .c-item-2 {
        margin-top: 20px;
    }

    .choose {
        padding: 40px 0;
    }
}

/* 净倍斯合作及仓储代发货流程 */
.hezuo {
    padding: 70px 0;
}

.hezuo::after {
    content: '';
    display: block;
    width: 100%;
    height: 400px;
    background-image: url(/static/upload/image/20231025/1698198719647790.jpg);
    margin-top: -298px;
    background-position: center;
}

.hezuo header p {
    max-width: 770px;
    margin: 0 auto;
}

.he-ico {
    text-align: center;
    margin: 15px 0;
}

.he-list {
    display: flex;
    justify-content: space-between;
}

.he-item {
    width: 16%;
    background: linear-gradient(#f1f1f1, #fff);
    padding: 70px 18px;
    text-align: center;
    border-radius: 100px;
    z-index: 2;
}

.he-lisi-i {
    font-size: 50px;
    color: var(--two-color);
    font-weight: 600;
}

.he-list-tit {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 5px;
}

.he-contact {
    color: var(--three-color);
    text-align: center;
    margin-top: 15px;
}

.he-c-ico {
    font-size: 45px;
}

.he-c-text {
    font-size: 24px;
    color: #fff;
    line-height: 10px;
}

.he-c-phone {
    font-size: 45px;
    font-weight: 600;
}

@media(max-width:1100px) {
    .he-list {
        flex-wrap: wrap;
    }

    .he-item {
        width: 32%;
        margin-top: 20px;
    }
}

@media(max-width:500px) {
    .he-item {
        width: 49%;
    }

    .hezuo {
        padding: 40px 0;
    }
    .he-c-phone{
        font-size: 30px;
    }
}

/* 提升消费者体验感 降低商家仓储运营成本 */
.md-banner .w1200 {
    padding: 70px 60px;
    background-image: url(../img/md-banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

.md-banner h3 {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}

.md-banner button {
    width: 200px;
    height: 60px;
    background: var(--three-color);
    color: #686516;
    font-size: 20px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    margin-top: 20px;
}

@media(max-width:500px) {
    .md-banner h3 {
        font-size: 25px;
    }

    .md-banner button {
        font-size: 16px;
    }

    .md-banner {
        text-align: center;
    }
}

/* 净倍斯供应链 */
.supply .w1200 {
    padding: 70px 0;
    border-bottom: 2px solid #dedede;
}

.supply header {
    margin-bottom: 50px;
}

.supply-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.supply-list-li {
    width: 50%;
}

.row2 {
    margin-top: 50px;
}

.supply-item {
    display: flex;
    align-items: center;
    padding: 45px 0;
    border-top: 1px solid #e0e0e0;
}

.supply-item-2,
.supply-item-4 {
    border-bottom: 1px solid #e0e0e0;
}

.supply-lisi-i {
    font-size: 50px;
    font-weight: 600;
    color: var(--one-color);
    margin-right: 35px;
}

.supply-list-tit {
    font-size: 24px;
    font-weight: 600;
}

.supply-list-desc {
    font-size: 18px;
}
@media(max-width:750px) {
    .supply-list{
        flex-wrap: wrap;
    }
    .supply-list-li{
        width: 100%;
    }
    .row2{
        flex-direction: column-reverse;
    }
}
@media(max-width:500px) {
    .supply .w1200{
        padding: 40px 0;
    }
    .supply-item{
        flex-wrap: wrap;
    }
    .supply-lisi-i,.supply-item-r{
        width: 100%;
        text-align: center;
    }
}
/* 关于净倍斯 */
.about .w1200 {
    padding: 70px 0;
    border-top: 1px solid #dedede;
    margin-top: 1px;
}

.about-con {
    display: flex;
    justify-content: space-between;
}

.about-con-l {
    width: 50%;
    padding-right: 56px;
}

.about-con-l h3 {
    font-size: 35px;
    font-weight: 600;
    color: var(--one-color);
}

.about-sub-tit {
    font-size: 45px;
    line-height: 1em;
    font-weight: 300;
    margin: 10px 0;
}

.about-desc {
    font-weight: 300;
}

.about-list {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.about-ltem {
    width: 32%;
    text-align: center;
    padding: 30px 35px;
    border: 2px solid #e7e7e7;
}

.about-ltem-tit {
    font-size: 22px;
    margin: 7px 0;
}
@media(max-width:900px) {
.about-con{
    flex-wrap: wrap;
}
.about-con-l,.about-con-r{
    padding: 0;
    width: 100%;
    text-align: center;
}
.about-sub-tit{
    font-size: 35px;
}
.about-con-r{
    margin-top: 20px;
}
}
@media(max-width:530px) {
.about-list{
    flex-wrap: wrap;
    margin-top: 0;
}
.about-ltem{
    width: 100%;
    margin-top: 20px;
}
.about .w1200{
    padding: 40px 0;
}
}
/* 免费获取一站式物流配送方案 */
.contact {
    padding: 110px 0 140px;
    background-image: url(../img/contact.jpg);
    background-position: center;
}

.contact h3,
.contact p {
    color: #fff;
}

.contact-form {
    display: flex;
    justify-content: space-between;
}

.contact-form input,
.contact-form button {
    width: 33%;
    max-width: 380px;
    height: 60px;
    font-size: 16px;
    color: #6f6f6f;
    background: #fff;
    border: none;
    outline: none;
}

.contact-form input {
    padding-left: 20px;
}

.contact-form button {
    background: var(--three-color);
    color: var(--one-color);
    font-weight: 600;
}
@media(max-width:500px) {
    .contact-form{
        flex-wrap: wrap;
    }
    .contact-form input,.contact-form button{
        display: block;
        width: 100%;
        margin-top: 20px;
        max-width: 500px;
    }
    .contact{
        padding: 40px 0;
    }
    }
/* 底部 */
.bot-map {
    padding: 50px 0 10px;
    border-bottom: 1px solid #dedede;
}

.map {
    border: 1px solid #e2e2e2;
    padding: 10px;
    background: #fff;
}

.map img {
    width: auto;
    max-width: none;
}

.map .BMapLabel {
    left: -66px !important;
    top: 35px !important;
    color: #fff;
    border: none !important;
    background: var(--one-color) !important;
    padding: 5px 10px !important;
    max-width: 190px !important;
    border-radius: 5px;
}

.bot-contact {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.bot-ewm {
    margin-right: 30px;
}

.bot-contact .text-center p {
    font-size: 20px;
    color: #181818;
    font-weight: 300;
    line-height: 1em;
    margin-bottom: 5px;
}

.bot-contact .text-center p span {
    font-size: 16px;
}

.bot-add {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    margin: 20px 0;
    color: #181818;
}

.bot-add span {
    width: 25px;
    height: 25px;
    line-height: 16px;
    background: #c0c0c0;
    padding: 3px;
    border-radius: 50%;
    color: #fff;
    margin-right: 5px;
}

.bot-add span::before {
    font-size: 14px;
}

.foot-text {
    text-align: center;
    border-top: 1px solid #dedede;
    margin-top: 1px;
    padding: 30px 0;
    font-size: 14px;
}

.float-box {
    position: fixed;
    bottom: 20%;
    right: -80px;
    z-index: 999;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.float-box ul li {
    text-align: center;
    position: relative;
}

.float-box ul li a {
    color: #fff;
    display: block;
    padding: 5px 15px;
    border-radius: 3px;
    background: var(--one-color);
}

.float-box ul li a:hover {
    background: var(--three-color);
    color: #fff;
}

.float-box ul li a span {
    font-size: 20px;
    font-weight: bold;
}

.float-box.active {
    right: 10px;
}
.phone-bot{
    display: none;
    position: fixed;
    bottom: 0;
    z-index: 99;
    width: 100%;
    background: rgba(0, 0, 0,0.8);
}
.phone-bot ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 40px;
}
.phone-bot ul li{
    width: 50%;
    text-align: center;
}
.phone-bot ul li:first-child{
    border-right: 1px solid #fff;
}
.phone-bot ul a{
    color: #fff;
}
@media(max-width:500px) {
    .phone-bot{
        display: block;
    }
    .BMap_omCtrl{
        display: none;
    }
    .bot-add{
        flex-wrap: wrap;
    }
    }